home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
mus
/
play
/
EdPlyr21.lha
/
AskEd.rexx
next >
Wrap
OS/2 REXX Batch file
|
1992-05-20
|
441b
|
15 lines
/* AskEd : ARexx script to ask EdPlayer about status. */
/* usage: rx AskEd <"A" command> */
arg Acom /* Read the CLI parameter into Acom */
options RESULTS /* Very important, turns on magic RESULT variable */
address EDPLAYER Acom /* Send Acom to EDPLAYER, should affect RESULT */
ans = RESULT /* Be sure to grab RESULT before anything else! */
say Acom||' returned '||ans /* I guess the user should hear about it. */
exit